/* Global Styles */
* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: "Poppins", sans-serif;
  overflow-x: hidden;
}

h1 {
  font-size: 5rem;
  position: relative;
}

li,
button,
label,
input,
a,
p {
  font-size: 2rem;
}

h2 {
  font-size: 3.5rem;
  position: relative;
}

h3 {
  font-size: 2.4rem;
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
}

.container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: 90%;
  margin: auto;
}

.line {
  height: 5px;
  background-color: #4de7c7;
  width: 100px;
  position: absolute;
  left: 0;
  bottom: -10px;
}

.top-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 80%;
  margin: auto;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  min-height: 10vh;
}

.top-nav img {
  height: 60px;
}

.logo {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 10rem;
          flex: 1 1 10rem;
}

nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 10rem;
          flex: 1 1 10rem;
}

nav ul a {
  text-transform: uppercase;
  color: black;
  letter-spacing: 1px;
  position: relative;
  margin-left: 2rem;
}

.menu-items a::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 10px;
  background-color: #4de7c7;
  -webkit-transition: all 0.6s ease;
  transition: all 0.6s ease;
  z-index: -10;
}

.menu-items a:hover::before {
  width: 100%;
}

/* HERO SECTION */
.intro {
  min-height: 90vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.menu-items-mobile {
  display: none;
  z-index: 10000;
}

.flex-column {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 30rem;
          flex: 1 1 30rem;
  position: relative;
}

.presentation {
  padding: 2rem;
}

.presentation h1,
.presentation p {
  -ms-flex-item-align: start;
      align-self: flex-start;
}

/* BTN + ANIMATION*/
.rdv-btn-mobile {
  display: none;
}

.rdv-btn,
.rdv-btn-mobile {
  -ms-flex-item-align: start;
      align-self: flex-start;
  background-color: #4de7c7;
  padding: 2rem;
  border: none;
  color: white;
  position: relative;
  border: 2px solid #4de7c7;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.btn1,
.btn2 {
  position: relative;
  padding: 2rem;
}

.rdv-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background-color: white;
  -webkit-transition: all 0.6s ease;
  transition: all 0.6s ease;
}

.rdv-btn:hover::before {
  width: 100%;
}

.rdv-btn:hover .btn1 {
  color: #4de7c7;
}

/* FIN BTN + ANIMATION */
.presentation p {
  padding: 3rem 0;
}

.round {
  position: absolute;
  top: -20%;
  right: 10%;
  z-index: -1;
}

#leaf-left,
#leaf-middle,
#leaf-right {
  -webkit-animation: upDown 1s infinite alternate;
          animation: upDown 1s infinite alternate;
}

#heart-beat {
  -webkit-animation: heart 1s infinite alternate;
          animation: heart 1s infinite alternate;
}

#leaf-middle {
  -webkit-animation-delay: 0.2s;
          animation-delay: 0.2s;
}

#leaf-right {
  -webkit-animation-delay: 0.4s;
          animation-delay: 0.4s;
}

@-webkit-keyframes upDown {
  from {
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
  to {
    -webkit-transform: translateY(-20px);
            transform: translateY(-20px);
  }
}

@keyframes upDown {
  from {
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
  to {
    -webkit-transform: translateY(-20px);
            transform: translateY(-20px);
  }
}

@-webkit-keyframes heart {
  from {
    -webkit-transform: translate(0px, 0px) scaleX(1);
            transform: translate(0px, 0px) scaleX(1);
  }
  to {
    -webkit-transform: translate(-20px, -20px) scale(1.1);
            transform: translate(-20px, -20px) scale(1.1);
  }
}

@keyframes heart {
  from {
    -webkit-transform: translate(0px, 0px) scaleX(1);
            transform: translate(0px, 0px) scaleX(1);
  }
  to {
    -webkit-transform: translate(-20px, -20px) scale(1.1);
            transform: translate(-20px, -20px) scale(1.1);
  }
}

.hide {
  position: fixed;
}

section.contact {
  background-color: #f9f9f998;
  padding: 5rem 0;
}

.block4 {
  text-align: center;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 20rem;
          flex: 1 1 20rem;
  position: relative;
}

.wrapper {
  width: 80%;
  margin: auto;
}

.svg-contact {
  display: inline-block;
  margin: auto;
  width: 3rem;
  height: 3rem;
  margin-bottom: 2rem;
  fill: #403d3d;
}

.container2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: 90%;
  margin: auto;
}

.map iframe {
  width: 100%;
}

.contact a {
  color: black;
  text-align: center;
}

.infirmiers-presentation {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 30rem;
          flex: 1 1 30rem;
}

.head1,
.name1,
.head2,
.name2 {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 10rem;
          flex: 1 1 10rem;
}

.name {
  position: relative;
}

.infirmiers {
  padding: 3rem 0 6rem 0;
  margin: 2rem 0;
}

.head {
  text-align: center;
}

.head1 svg {
  width: 12rem;
}

.head2 svg {
  width: 8rem;
}

/*
.name::after {
  content: "";
  position: absolute;
  height: 5px;
  background-color: #4de7c7;
  width: 40%;
  left: 0;
  bottom: 0;
}
*/
.title-infirmiers {
  text-transform: uppercase;
  padding-bottom: 2rem;
}

.block-infirmier {
  padding: 3rem;
  border-left: 5px solid #f9f9f998;
}

.reveal-text {
  position: absolute;
  width: 100%;
  height: 100%;
  background: white;
  left: 0;
  bottom: 0;
}

.cabinet {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.cabinet-img,
.text-cabinet {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 35rem;
          flex: 1 1 35rem;
  position: relative;
}

.cabinet-img img {
  width: 100%;
  height: 100%;
}

.text-cabinet {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #f9f9f998;
  padding: 3rem;
}

.text-cabinet p {
  margin-top: 3rem;
}

.adresse {
  font-weight: 700;
}

.line1 {
  height: 5px;
  background-color: #4de7c7;
  width: 0px;
  position: absolute;
  left: 0;
  bottom: -10px;
}

.line1 {
  width: 0;
}

.cabinet a {
  color: black;
}

.footer {
  /* background: rgb(49, 51, 59);*/
  background-color: #f9f9f9;
  color: #3d3d3d;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  min-height: 30vh;
  overflow: hidden;
}

.footer h1 {
  padding-top: 5rem;
  z-index: 10;
}

.footer h1::after {
  content: "";
  height: 1rem;
  width: 100%;
  position: absolute;
  background-color: #4de7c7;
  left: 0;
  bottom: 1.5rem;
  z-index: -10;
}

.container2 {
  padding: 5rem 0;
}

.contact-footer-p {
  position: relative;
}

.footer svg {
  position: absolute;
  top: -5rem;
  left: 0;
}

.footer a {
  color: #3d3d3d;
}

.img-footer-icon {
  width: 6rem;
  margin-bottom: 1rem;
}

.mobile-fixed-nav-bottom {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: #4de7c7;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  display: none;
  z-index: 1000;
}

.mobile-fixed-nav-bottom a {
  text-align: center;
  width: 100%;
}

.mobile-fixed-nav-bottom svg {
  padding: 2rem 0;
  height: 80px;
}

@media screen and (max-width: 1024px) {
  h1 {
    font-size: 4.5rem;
  }
  h2 {
    font-size: 3rem;
  }
  h3 {
    font-size: 1.9rem;
  }
  p {
    font-size: 1.7rem;
  }
  .intro {
    min-height: auto;
    padding: 5rem 0;
  }
  .menu-items-mobile {
    display: block;
  }
  .menu-items,
  .rdv-btn,
  .btn1 {
    display: none;
    z-index: -1000;
  }
  .rdv-btn-mobile {
    display: block;
    z-index: 100;
    margin: auto;
  }
  nav {
    width: 80%;
    margin: auto;
  }
  .menu-items-mobile {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    background-color: black;
    z-index: 10000;
    opacity: 1;
    clip-path: circle(50px at 100% -10%);
    -webkit-clip-path: circle(50px at 100% -10%);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow: hidden;
  }
  .a-link1 {
    color: white;
    text-transform: uppercase;
    padding-top: 5rem;
    position: relative;
    font-size: 2.6rem;
  }
  .a-link1::after {
    content: "";
    height: 5px;
    width: 100%;
    background-color: #4de7c7;
    bottom: 5px;
    left: 0;
    position: absolute;
    z-index: -18;
  }
  .burger {
    position: relative;
    display: block;
    padding: 1rem;
    z-index: 11000;
  }
  .burger span {
    height: 4px;
    margin: 0.5rem 0rem;
    display: block;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
    border-radius: 4px;
    z-index: 199;
    position: relative;
  }
  .line2 {
    width: 0px;
    background: black;
    opacity: 0;
  }
  .line3 {
    width: 0px;
    background: black;
    opacity: 0;
  }
  .line2,
  .line3 {
    pointer-events: none;
  }
  .svg-animation svg {
    width: 85%;
    z-index: -10;
  }
  .footer {
    height: auto;
    padding: 5rem 0;
  }
  .footer .container2 {
    margin: 0 auto;
  }
}

@media screen and (max-width: 836px) {
  .intro {
    padding: 0rem 0 5rem 0;
  }
  .intro .container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .presentation h1,
  .presentation p {
    text-align: center;
    -ms-flex-item-align: auto;
        -ms-grid-row-align: auto;
        align-self: auto;
  }
  .rdv-btn {
    -ms-flex-item-align: auto;
        -ms-grid-row-align: auto;
        align-self: auto;
  }
  .round {
    display: none;
  }
}

@media screen and (max-width: 600px) {
  .intro {
    margin-bottom: 3.5rem;
  }
  .rdv-btn {
    display: none;
  }
  .rdv-btn.mobile {
    display: block;
  }
  .mobile-fixed-nav-bottom {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  h1 {
    font-size: 3.5rem;
  }
  p {
    font-size: 1.65rem;
  }
  .svg-animation svg {
    width: 80%;
  }
  .svg-animation {
    overflow: hidden;
  }
  .presentation {
    padding: 2rem 2rem 2rem 2rem;
  }
  .container2 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: initial;
        -ms-flex-align: initial;
            align-items: initial;
  }
  .block4 {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 10rem;
            flex: 1 1 10rem;
    margin-bottom: 2rem;
  }
  .contact .block4:nth-child(2) {
    margin: 2rem 0 6rem 0;
  }
  h1 {
    text-align: center;
  }
  .infirmiers {
    margin: 2rem 0 0 0;
  }
  .infirmiers p {
    text-align: center;
  }
  .cabinet h1,
  .cabinet p {
    text-align: left;
  }
  .cabinet {
    overflow-x: hidden;
  }
  .text-cabinet {
    padding: 5rem 3rem;
  }
  .footer p {
    text-align: center;
  }
}
/*# sourceMappingURL=style.css.map */